Htaccess redirect: [everyone] [every page] -> [holding page] - except me?

You could check the remove address: RewriteCond %{REMOTE_ADDR}! =12.345.67.89 RewriteRule! ^maintanence$ maintanence L You also might want to exclude other files like images, stylesheets, etc.: RewriteCond %{REMOTE_ADDR}!

=12.345.67.89 RewriteRule! ^(maintanence$|images/|style/) maintanence L This will rewrite any request that’s URL path is either not maintanence or does start with images or style.

You could check the remove address: RewriteCond %{REMOTE_ADDR}! =12.345.67.89 RewriteRule! ^maintanence$ maintanence L You also might want to exclude other files like images, stylesheets, etc.: RewriteCond %{REMOTE_ADDR}!

=12.345.67.89 RewriteRule! ^(maintanence$|images/|style/) maintanence L This will rewrite any request that’s URL path is either not /maintanence or does start with /images/ or /style/.

Thanks gumbo, this looks like excellent advice – Haroldo Sep 21 '10 at 10:11 ha, I hadn't thought about excluding the holding page from the rule, that would have been a classic! – Haroldo Sep 21 '10 at 10:12.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions